        /* body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            background-color: #f0f0f0;
        } */

        .main-overlay-container {
            overflow-y: scroll;
        }

        .filter-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid #FFFFFF4D;
            padding-bottom: 1rem;
            margin-bottom: 1rem;
        }

        .filter-header h1 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #F5F5F5;
        }

        .filter-button-section {
            display: flex;
            gap: 1rem;
        }

        .filter-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.6rem;
            background-color: #87CEFA;
            color: #001F3F;
            border: 1px solid #87CEFA;
            border-radius: 0.5rem;
            font-size: 0.85rem;
            font-weight: 600;
            line-height: 1.25rem;
        }

        .clear-filter-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.6rem;
            background-color: transparent;
            color: #87CEFA;
            border: 1px solid #87CEFA;
            border-radius: 0.5rem;
            font-size: 0.85rem;
            font-weight: 600;
            line-height: 1.25rem;
        }

        .hidden {
            display: none;
        }

        /* Container for spacing and alignment */
        .requests-per-page-select {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 16px 0;
            font-family: Arial, sans-serif;
        }

        /* Label styling */
        .requests-per-page-select label {
            font-size: 16px;
            color: #ffffff;
            font-weight: bold;
        }

        /* Select dropdown styling */
        .requests-per-page-select select {
            font-size: 16px;
            padding: 8px 12px;
            border: 2px solid #5FACDC;
            border-radius: 8px;
            background-color: #f9f9f9;
            color: #333;
            cursor: pointer;
            outline: none;
            transition: all 0.3s ease;
        }

        /* Hover effect */
        .requests-per-page-select select:hover {
            border-color: #4A90E2;
            background-color: #e8f4ff;
        }

        /* Focus effect */
        .requests-per-page-select select:focus {
            border-color: #4A90E2;
            box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
        }

        /* Option styling (for some browsers) */
        .requests-per-page-select select option {
            font-size: 16px;
            padding: 8px;
        }

        /*Filter Modal styles */
        .filterModal {
            display: none;
            /* Hidden by default */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            overflow: auto;
        }

        .filterModal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .filterModal-header h2 {
            color: #FFFFFF;
        }

        .filterModal-content {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: stretch;
            /* Ensures children grow */
            gap: 20px;
            width: 80%;
            max-width: 40.62rem;
            margin: 12% auto;
            padding: 20px;
            border-radius: 10px;
            background-color: #FFFFFF4D;
            backdrop-filter: blur(18.31px);
            box-sizing: border-box;
            /* overflow: auto; */
            /* Prevent overflow */
        }

        .close-btn {
            display: flex;
            justify-content: flex-end;
            font-size: 1.5rem;
            cursor: pointer;
            width: fit-content;
            color: #FFFFFF;
        }

        .filterModal-content form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            width: 100%;
            box-sizing: border-box;
            /* Ensure padding is included in width/height calculations */
        }

        .modal-submit-btn {
            background-color: #5FACDC;
            color: #001F3F;
            border: none;
            padding: 0.75rem;
            cursor: pointer;
            border-radius: 5px;
            display: flex;
            justify-content: center;
            font-size: 1rem;
            font-weight: 600;
        }

        .modal-submit-btn:hover {
            background-color: #0056b3;
        }

        .field-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .field-group label {
            font-size: 1rem;
            line-height: 1.5rem;
            font-weight: 400;
            color: #ffffff;
        }

        .field-group input {
            background-color: transparent;
            border: 1px solid #FFFFFF;
            padding: 0.62rem;
            outline: none;
            border-radius: 0.5rem;
            color: #FFFFFF;
        }

        /* .field-group select {
            background-color: transparent;
            border: 1px solid #FFFFFF;
            padding: 0.62rem;
            outline: none;
            border-radius: 0.5rem;
            color: #FFFFFF;
            cursor: pointer;
        }

         .field-group select option {
        background-color: #ffffff;
        color: #1f1f1f;
        border-radius: 0.5rem;
    } */


  .custom-select {
    position: relative;
    user-select: none;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    /* background-color: #f9f9f9; */
  }

  .custom-select-trigger {
    display: flex;
    justify-content: space-between;
    padding: 9px 12px;
    cursor: pointer;
    font-size: 1rem;
    color: #E4E4E4;
  }

  .custom-select-trigger span{
    color: #E4E4E4;
  }

  .custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #636363f6;
    backdrop-filter: blur(18.31px);
    border: 1px solid #ccc;
    z-index: 999;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    border-top: none;
  }

  .custom-option {
    padding: 10px 12px;
    cursor: pointer;
    transition: background 0.2s;
    color: #E4E4E4;
  }

  .custom-option:hover {
    background-color: #292929;
  }

  .custom-select.open .custom-options {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .custom-select.open .custom-select-trigger {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
  }




        .field-group input::placeholder {
            font-size: 0.85rem;
            font-weight: 500;
            color: #E4E4E4;
        }

        .field-group select::placeholder {
            background-color: transparent;
            border: 1px solid #FFFFFF;
            padding: 0.62rem;
            outline: none;
            border-radius: 0.5rem;
            color: #FFFFFF;
        }

        /* Main Container of Page */
        .submitted-page-main-container {
            padding: 2rem 4rem;
        }

        .submitted-page-wrapper {
            max-width: 1700px;
            margin: 0 auto;
            margin-bottom: 5rem;
        }

        .cards-ads-wrapper {
            display: flex;
            flex-direction: row;
            width: 100%;
            gap: 1.5rem;

        }

        .cards-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .cards-section {
            flex: 3;
        }

        .card {
            background-color: #FFFFFF4D;
            background: rgba(255, 255, 255, 18.31px);
            border-radius: 1rem;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 1.25rem;
            /* color: #fff; */
            min-height: 16.43rem;
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            width: 100%;
        }

        .user-info {
            display: flex;
            align-items: center;
        }

        .user-info span {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #FFD966;
            color: #ffffff;
            font-weight: bold;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin-right: 10px;
        }

        .user-info .user-name {
            font-size: 1rem;
            font-weight: 600;
            line-height: 1rem;
            color: #FFFFFF;
        }

        .user-info .date {
            font-size: 0.75rem;
            font-weight: 600;
            color: #EFEFEF;
            margin-top: 4px;
        }

        .card-actions {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .report-btn {
            padding: 0.62rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: transparent;
            border: 1px solid #FFD966;
            border-radius: 0.5rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: #FFD966;
            cursor: pointer;
        }

        .report-btn:hover img {
            filter: invert(0%) brightness(0%) contrast(100%);


        }

        .report-btn:hover {
            background-color: #FFD966;
            color: #001F3F;

        }

        .card-actions .like-count {
            display: flex;
            align-items: center;
            border: 1px solid #FFD966;
            border-radius: 0.5rem;
            gap: 0.2rem;
            padding: 0.62rem 1rem;
            font-size: 0.75rem;
            /* color: #FFD966; */
            font-weight: 600;
            cursor: pointer;
        }

        .like-count img {
            filter: brightness(0) saturate(100%) invert(95%) sepia(79%) saturate(911%) hue-rotate(318deg) brightness(103%) contrast(101%);
        }

        .card-actions .like-count span {
            margin-left: 5px;
        }

        .liked img {
            filter: invert(0%) brightness(0%) contrast(100%);
        }

        .like-count span {
            color: #FFD966;
        }

        .like-count.liked span {
            color: #001F3F;
        }

        .close-btn-cmnt-modal {
            cursor: pointer;
        }

        .modal-likesCount {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border: 2px solid #FFD966;
            padding: 5px 14px;
            color: white;
            border-radius: 0.5rem;
            margin-left: 1rem;
            background-color: #FFD966;
        }

        /* .modal-likesCount img {
            filter: invert(0%) brightness(0%) contrast(100%);
        } */

        .modal-likesCount p {
            color: #001F3F;
            font-weight: 600;
            font-size: 0.75rem;
        }



        .card-content h2 {
            font-size: 1.12rem;
            font-weight: 600;
            line-height: 1.5rem;
            color: #FFFFFF;
            margin-bottom: 1rem;
        }

        .card-content p {
            font-size: 0.85rem;
            font-weight: 600;
            line-height: 1.5rem;
            color: #FFFFFF;
        }

        .readMore-commentBtn-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 1.5rem;
        }

        .readMore-commentBtn-wrapper p {
            font-size: 0.85rem;
            font-weight: 600;
            line-height: 1.5rem;
            color: #FFD966;
            cursor: pointer;
        }

        /* Modal for Add-Comments and Read More */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .modal-content {
            position: relative;
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(2rem);
            margin: 5% auto;
            padding: 20px;
            width: 50%;
            height: 34rem;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            overflow-y: scroll;
            scrollbar-width: thin;
            scrollbar-color: #888 transparent;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #FFFFFF4D;
            padding-bottom: 1rem;
        }

        .modal-header .close-btn {
            cursor: pointer;
        }

        .modal-profile-nameDate-wrapper {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .modal-profileName {
            width: 40px;
            height: 40px;
            background-color: #FFD966;
            color: #ffffff;
            font-weight: bold;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin-right: 10px;
        }

        .modal-nameDate-wrapper {
            display: flex;
            flex-direction: column;
            /* gap: 0.2rem; */
        }

        .modal-name {
            font-size: 1rem;
            font-weight: 600;
            line-height: 1rem;
            color: #FFFFFF;
        }

        .modal-date {
            font-size: 0.75rem;
            font-weight: 600;
            color: #EFEFEF;
        }

        .modal-title {
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1.5rem;
            color: #FFFFFF;
            margin-bottom: 1rem;
        }

        .modal-full-content {
            font-size: 0.85rem;
            font-weight: 600;
            line-height: 1.5rem;
            color: #FFFFFF;
            border-bottom: 2px solid #FFFFFF4D;
            padding-bottom: 3rem;
        }

        .modal-request-actions {
            margin-top: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }


        .modal-request-actions p {
            font-size: 0.75rem;
            font-weight: 600;
            line-height: 1.5rem;
            color: #FFFFFF;
        }

        .modal-like-dislike-btns {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .modal-like-dislike-btns button {
            background-color: transparent;
            border: none;
            outline: none;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.75rem;
            font-weight: 600;
            line-height: 1.5rem;
            color: #FFFFFF;
            cursor: pointer;
        }



        .comment-form {
            width: 100%;
            border: 2px solid #ccc;
            border-radius: 0.5rem;
            padding: 0rem 1rem;
        }

        .comment-form .hidden {
            display: none;
            margin-top: 10px;
        }

        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 10px 0px;
            /* margin-bottom: 10px; */
            border: none;
            outline: none;
            /* border-radius: 5px; */
            transition: all 0.3s ease;
            background: transparent;
            color: #E4E4E4;
        }

        .comment-form textarea {
            height: 6rem;
            resize: none;
            border-top: 1px solid #ccc;
        }

        .response-buttons {
            display: flex;
            justify-content: flex-end;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .response-buttons button {
            padding: 6px 10px;
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .response-buttons .cancel-btn {
            background: transparent;
            border: 2px solid white;
            color: white;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .response-buttons .comment-btn {
            background: #5FACDC;
            color: #001F3F;
            font-size: 0.75rem;
            font-weight: 600;
            line-height: 1.25rem;
            border: none;
        }

        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #FFD966;
            outline: none;
        }

        .comment-form input::placeholder,
        .comment-form textarea::placeholder {
            color: white;
        }

        .response-section {
            margin-top: 2.5rem;
        }

        .response-form {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .response-input {
            width: 100%;
            padding: 10px;
            font-size: 1em;
            background-color: transparent;
            border: 1px solid #FFFFFF;
            outline: none;
            border-radius: 0.5rem;
            color: #FFFFFF;
        }

        .response-input::placeholder {
            font-size: 1rem;
            line-height: 1.5rem;
            font-weight: 600;
            color: #FFFFFF99;
        }

        .response-form.expanded {
            display: flex;
        }

        .responses-count {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            user-select: none;
            cursor: pointer;
            margin-top: 1rem;
        }

        .responses-count h5 {
            font-size: 0.75rem;
            font-weight: 700;
            line-height: 1.5rem;
            color: #87CEFA;
        }

        .responses-count p {
            font-size: 0.75rem;
            font-weight: 600;
            line-height: 1.5rem;
            color: #ffffff;
        }

        .response-accordion {
            /* max-height: 0; */
            /* overflow: auto; */
            transition: max-height 0.3s ease-out;
            margin-top: 0.5rem;
            border-left: 2px solid #87CEFA;
            padding-left: 1rem;
            display: none;
            flex-direction: column;
            gap: 1rem;
        }

        .response-accordion.active {
            display: flex;
            /* Adjust based on content */
        }

        .response-chevron {
            transition: transform 0.3s ease;
        }

        .response-chevron.rotated {
            transform: rotate(180deg);
        }

        .no-comments {
            color: #E4E4E4;
            font-weight: 500;
            font-size: 0.875rem;
        }

        /* Comments added styling */
        .response-box {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            border-bottom: 1px solid #FFFFFF4D;
            padding-bottom: 1rem;
        }

        .cmnt-header {
            display: flex;
            align-items: center;
        }

        .cmnt-header-profileLetter {
            width: 40px;
            height: 40px;
            background-color: #FFD966;
            color: #ffffff;
            font-weight: bold;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin-right: 10px;
        }


        .cmnt-header-name {
            font-size: 1.2rem;
            font-weight: 600;
            line-height: 1.5rem;
            color: #FFFFFF;
        }

        .response-box .cmnt-msg {
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.5rem;
            color: #FFFFFF;
        }


        .cmnt-btn {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            padding: 0.62rem 1rem;
            font-size: 0.87rem;
            font-weight: 600;
            color: #87CEFA;
            border: 1px solid #87CEFA;
            border-radius: 0.5rem;
            background: transparent;
            cursor: pointer;
        }

        .cmnt-btn:hover {
            background-color: #87CEFA;
            color: #001F3F;
        }

        .cmnt-btn:hover img {
            filter: invert(82%) sepia(20%) saturate(2077%) hue-rotate(179deg) brightness(101%) contrast(92%);

        }

        .no-cards {
            color: #FFFFFF;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.5rem;
        }


        .pagination-section {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin: 20px 0;
            gap: 5px;
            font-family: Arial, sans-serif;
        }

        .pagination-section a,
        .pagination-section .dots {
            padding: 8px 12px;
            text-decoration: none;
            /* border: 1px solid #FFD966; */
            border-radius: 5px;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            /* background-color: #fff; */
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .pagination-section span {
            color: white;
        }

        .pagination-section a.active {
            background-color: #FFD966;
            color: #000000;
            pointer-events: none;
        }

        .pagination-section a:hover {
            background-color: #FFD966;
            color: #000000;
        }

        .last-item {
            /* background-color: #FFD966; */
            color: #000000;
        }

        .pagination-section .dots {
            background-color: transparent;
            border: none;
            color: #ffffff;
            font-size: 16px;
            pointer-events: none;
        }



        .review-donate-btn {
            flex: 3;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            margin: 3.5rem 0rem;
            width: 100%;
        }

        .review-donate-btn button {
            width: 12.43rem;
            padding: 1.06rem 1.5rem;
            border: none;
            border-radius: 0.5rem;
            font-size: 1rem;
            font-weight: 600;
            color: #001F3F;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
        }

        .mobile-review-donate-btn {
            display: none;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            margin: 2.5rem 0rem;
            width: 100%;
        }

        .mobile-review-donate-btn button {
            width: 12.43rem;
            padding: 1.06rem 1.5rem;
            border: none;
            border-radius: 0.5rem;
            font-size: 1rem;
            font-weight: 600;
            color: #001F3F;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
        }

        .card-section-review-btn {
            background-color: #FFD966;
        }

        .card-section-donate-btn {
            background-color: #87CEFA;
        }


        /* Ads Section */
        .ad-section1 {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 4.6rem;
        }

        .ad {
            margin-bottom: 15px;
            padding: 15px;
            /* background-color: #f9f9f9; */
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .free-now-section {
            background-color: #FFFFFF4D;
            background: rgba(255, 255, 255, 18.31px);
            border-radius: 1rem;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 1.25rem;
            color: #fff;
            min-height: 19rem;
        }

        .free-now-section h3 {
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1.5rem;
            color: #FFFFFF;
            margin-top: 1.5rem;
        }

        .free-now-section p {
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.5rem;
            color: #E8E8E8;
            margin-top: 0.5rem;
        }

        .register-now-btn {
            padding: 0.62rem 1rem;
            background-color: #87CEFA;
            color: white;
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            width: 100%;
            margin-top: 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.5rem;
            color: #001F3F;
        }

        /* First ad */
        .first-ad {
            background-color: #FFFFFF4D;
        backdrop-filter: blur(10px);
            background-position: center center;
            background-size: cover;
            width: 100%;
            border-radius: 1rem;
            padding: 1.5rem;
            min-height: 35rem;
        }

        .first-ad-icon {
            width: 100%;
            display: flex;
            justify-content: flex-end;
            margin-bottom: 2rem;
        }

        .first-ad h3 {
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 2rem;
            color: #FFFFFF;
            margin-bottom: 1.5rem;
        }

        .first-ad p {
            font-size: 1rem;
            font-weight: 400;
            line-height: 0.5rem;
            color: #FFFFFF;
        }

        .first-ad button {
            padding: 0.62rem 1rem;
            background-color: #87CEFA;
            color: white;
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            width: 100%;
            margin-top: 17.43rem;
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.5rem;
            color: #001F3F;
        }


        /* Second ad */
        .second-ad {
            background-color: #FFFFFF4D;
        backdrop-filter: blur(10px);
            background-position: center center;
            background-size: cover;
            width: 100%;
            border-radius: 1rem;
            padding: 1.5rem;
            min-height: 21.5rem;
        }

        .second-ad-icon {
            width: 100%;
            display: flex;
            justify-content: flex-end;
            margin-bottom: 2rem;
        }

        .second-ad h3 {
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 2rem;
            color: #FFFFFF;
            margin-bottom: 1.5rem;
        }

        .second-ad p {
            font-size: 1rem;
            font-weight: 400;
            line-height: 0.5rem;
            color: #FFFFFF;
        }

        .second-ad button {
            padding: 0.62rem 1rem;
            background-color: #87CEFA;
            color: white;
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            width: 100%;
            margin-top: 3rem;
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.5rem;
            color: #001F3F;
        }

        @media (max-width: 1024px) {

            .review-donate-btn {
                display: none;
            }

            .mobile-review-donate-btn {
                display: flex;
            }

            .ad-section1 {
                margin-top: 0;
            }

            .cards-ads-wrapper {
                flex-direction: column;
            }

            .free-now-section {
                min-height: 2rem;
            }

            .register-now-btn {
                margin-top: 0;
            }

            .free-now-content-wrapper {
                display: none;
            }

            .first-ad{
                min-height: 11rem;
            }

            .first-ad button {
                margin-top: 2rem;
            }

            .second-ad {
                display: none;
            }

            .review-donate-btn {
                width: 100%;
            }

        }

        @media (max-width: 768px) {
            .submitted-page-main-container {
                padding: 2rem 1rem;
            }

            .report-btn p {
                display: none;
            }

            .filter-btn p {
                display: none;
            }

            .clear-filter-btn p {
                display: none;
            }

            .like-count span {
                display: none;
            }

            .modal {
                padding: 0rem 1rem;
            }

            .modal-content {
                margin-top: 15%;
                width: 100%;
            }
        }